home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
ctutor.exe
/
ANSWERS
/
CH07_3.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-05-15
|
473b
|
30 lines
#include "stdio.h"
#include "string.h"
char my_string[20] = "C is neat!";
void main()
{
int index;
printf("%s\n", my_string);
for (index = 0 ; my_string[index] ; index = index + 1)
printf("%c", my_string[index]);
printf("\n");
for(index = strlen(my_string) ; index > 0 ; index = index - 1)
printf("%c", my_string[index - 1]);
printf("\n");
}
/* Result of execution
C is neat!
C is neat!
!taen si C
*/